home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / dos_support / dopkt4.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-19  |  451 b   |  23 lines

  1.  
  2. /* AmigaDOS tag call */
  3.  
  4. #include <exec/types.h>
  5. #include <utility/tagitem.h>
  6. #include <clib/dos_protos.h>
  7.  
  8. #ifndef HYPER
  9. #define HYPER
  10. #endif
  11.  
  12. typedef struct TagItem     TagItem;
  13.  
  14. // LONG DoPkt( struct MsgPort *port, long action, long arg1, long arg2, long arg3,
  15. //    long arg4, long arg5 );
  16.  
  17. LONG
  18. HYPER ## DoPkt4( struct MsgPort *port, long action, long arg1, long arg2, 
  19.     long arg3, long arg4 )
  20. {
  21.     return DoPkt(port,action,arg1,arg2,arg3,arg4,0);
  22. }
  23.